<script>on openCarddisable menuItem "Lookup" of menu "Collect"disable menuItem "UnNamed" of menu "Collect"disable menuItem "Do Pass" of menu "Collect"disable menuItem "Verify" of menu "Summaries"end openCardon closeCardenable menuItem "Lookup" of menu "Collect"enable menuItem "UnNamed" of menu "Collect"enable menuItem "Do Pass" of menu "Collect"enable menuItem "Verify" of menu "Summaries"end closeCardon ClearCardput 0 into fld sumnodesput 0 into fld sumperplusput 0 into fld sumperseput 0 into fld sumperIIput 0 into fld sumplusput 0 into fld sumclassicput 0 into fld sumseput 0 into fld sumse30put 0 into fld sumportableput 0 into fld sumLCput 0 into fld sumIIput 0 into fld sumIIxput 0 into fld sumIIciput 0 into fld sumIIsiput 0 into fld sumIIcxput 0 into fld sumIIfxput 0 into fld sumknownmacsput 0 into fld sumresponderput 0 into fld sumnoresponderput 0 into fld sumothersput 0 into fld sumlasersput 0 into fld sumappleshareput 0 into fld sumnetsput 0 into fld sumzoneslistput 0 into fld sumPlusesput 0 into fld sumSEsput 0 into fld sumIIsput 0 into fld sumallmacsend ClearCardon FindPercentages---- This script finds the totals of the known macs.-- The total found here should be the same as the-- total of Macs with Responder.--add fld sumPlus to fld sumKnownMacsadd fld sumSE to fld sumKnownMacsadd fld sumSE30 to fld sumKnownMacsadd fld sumPortable to fld sumKnownMacsadd fld sumII to fld sumKnownMacsadd fld sumIIx to fld sumKnownMacsadd fld sumIIci to fld sumKnownMacsadd fld sumIIcx to fld sumKnownMacsadd fld sumIIfx to fld sumKnownMacs-- This finds the total Macintoshes by adding the-- ones with responder to the ones without responder.add fld sumResponder to fld sumAllMacsadd fld sumNoResponder to fld sumAllMacs-- This section finds the percentage for each group of Macset numberformat to 0put fld sumPlus into fld sumPlusesput fld sumSE into fld sumSEsadd fld sumSE30 to fld sumSEsadd fld sumPortable to fld sumSEsput fld sumII into fld sumIIsadd fld sumIIx to fld sumIIsadd fld sumIIcx to fld sumIIsadd fld sumIIci to fld sumIIsadd fld sumIIfx to fld sumIIsadd fld sumIIsi to fld sumIIsget fld sumPlusif it is 0 thenput 0 into fld sumPerPluselsemultiply it by 100divide it by fld sumKnownMacsput it into fld sumPerPlusend ifget fld sumSEsif it is 0 thenput 0 into fld sumPerSEelsemultiply it by 100divide it by fld sumKnownMacsput it into fld sumPerSEend ifget fld sumIIsif it is 0 thenput 0 into fld sumPerIIelsemultiply it by 100divide it by fld sumKnownMacsput it into fld sumPerIIend ifend FindPercentageson TotalCardlock screensend "ClearCard" to this cardset the cursor to busyunmark all cardsset the cursor to busymark cards by finding string (fld "zoneIdent") in fld "zoneList"set the cursor to busy-- Find the total amount of nodes powered up during the search.put the last word of the ID of this card into SumCardgo first marked cardrepeat for the number of marked cardsset cursor to busyadd fld PoweredUpNodes to fld sumNodes of card ID SumCardadd fld Classic to fld sumClassic of card ID SumCardadd fld Plus to fld sumPlus of card ID SumCardadd fld SE to fld sumSE of card ID SumCardadd fld SE30 to fld sumSE30 of card ID SumCardadd fld Portable to fld sumPortable of card ID SumCardadd fld LC to fld sumLC of card ID SumCardadd fld II to fld sumII of card ID SumCardadd fld IIx to fld sumIIx of card ID SumCardadd fld IIsi to fld sumIIsi of card ID SumCardset the cursor to busyadd fld IIci to fld sumIIci of card ID SumCardadd fld IIcx to fld sumIIcx of card ID SumCardadd fld IIfx to fld sumIIfx of card ID SumCardadd fld NumberOfLasers to fld sumLasers of card ID SumCardadd fld NumberOfAppleshare to fld sumAppleshare of card ID SumCardadd fld NumberOfNets to fld sumNets of card ID SumCardset the cursor to busyadd fld NumberOfMacs to fld sumResponder of card ID SumCardadd number of lines in fld ProMacs to fld sumNoResponder of card ID SumCardadd fld NumberOfUnknown to fld sumOthers of card ID SumCardgo next marked cardend repeatgo card ID sumCardput the number of marked cards into fld sumZonesListsubtract fld sumNoResponder from fld sumOtherssend "FindPercentages" to this backgroundunlock screen with dissolve fastset the cursor to normalend TotalCard</script>